home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 22
/
freelog 22.iso
/
Prog
/
Djgpp
/
GPC2952B.ZIP
/
doc
/
gpc
/
docdemos
/
eparrayinitdemo.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
2001-02-09
|
321 b
|
18 lines
program EPArrayInitDemo;
{$W no-field-name-problem} { avoid a warning by GPC }
const
MyStringsCount = 5;
type
Ident = String (20);
var
MyStrings : array [1 .. MyStringsCount] of Ident value
[1 : 'export'; 2 : 'implementation'; 3 : 'import';
4 : 'interface'; 5 : 'module'];
begin
end.